Remember that all text should go between the <body> and </body> tags. Let's start with headers. There are six sizes of headers that can be used.
Breaks
To add a break in between lines, use the <br> tag. This tag ends the current line and starts on a new one. Use multiple <br> tags to create blank lines.
Horizontal Rules
Horizontal rules are lines that divide off your page.
<hr> produces:
Alignment
Want to center your text? Just add the <center> </center> tags with the text in between. This also works on images, tables, etc.
Bold, Underlined, and Italics
To make text bold, add the <b> </b> tags to produce this.
To underline, use <u> </u> tags to produce this.
To make italics, use <i> </i> tags to produce this.
Font color, size and face
To change font color and type you use the <font> </font> tags. You can add color, size, or font to that.
<font color="ffffff"> yields white text
Font size does the same thing as the header tags, but in the font tag. You can use <font size=5> for this or <font size=+3> for this
The base size is 3 for adding or subtracting values.
Font face controls the type such as <font face="modern" > Modern or <font face="technical"> Technical
Be careful using font faces. Not all people will be able to see them all. It depends if they have that font in their font directory. If not, it will appear as regular text.
This is a number list. It is used to number things down a list on the page.
<ol> Begins Ordered List
<li> List Item 1
<li> List Item 2
</ol> Ends Ordered List (Numbered List)
You can modify the <ol> tag and add type="I" to it to produce: